for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
import makeAppError from './app-error.js';
const AppError = makeAppError(RangeError);
class NoContentError extends AppError {
/**
* Get the error name
*
* @return {string}
*/
get name() {
return 'NoContentError';
}
* Get the error status
* @return {number}
get errorStatus() {
return 204;
export default NoContentError;